@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap");

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  list-style: none;
  text-decoration: none;
  font-family: "Inter";
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2069a6 #c7c7c8;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 20px;
}

*::-webkit-scrollbar-track {
  background: #c7c7c8;
}

:root {
  --green-multipar: #8fb72b;
  --blue-multipar: #2069a6;
  --gray-multipar: #c7c7c8;
  --light-gray-multipar: #f7f7f7;
  --white-multipar: #ffffff;
}

/* WHATSAPP AREA */

#icon-whatsapp {
  right: 50px;
  bottom: 50px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #59ce72;
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.16);
  z-index: 10000;
}

#icon-whatsapp i {
  font-size: 30px;
  color: white;
}

/* WHATSAPP AREA */

/* REDES SOCIAIS */

.redes-sociais {
  /* background-color: var(--green-multipar); */
  background: linear-gradient(90deg, rgba(32, 105, 166, 1) 8%, rgba(143, 183, 43, 1) 100%);
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.redes-sociais.pinned {
  opacity: 0;
  visibility: hidden;
}

.redes-sociais p {
  color: #ffffff;
  font-weight: 300;
  font-size: 15px;
}

.redes-sociais .icones {
  margin: 0px 10px 0px 10px;
}

.redes-sociais .icones a i {
  color: #ffffff;
  font-size: 15px;
}

.redes-sociais .icones a i:hover {
  color: var(--blue-multipar);
  transition: 0.6s;
}

.redes-sociais .icones a .fa-instagram {
  margin: 0px 5px 0px 5px;
}

/* REDES SOCIAIS SEC - FIM ESTILIZAÇÃO  */

/* MENU - ÍNICIO ESTILIZAÇÃO */

.header {
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-multipar);
  height: 4.6875rem;
  padding: 1rem;
  position: relative;
  transition: top 0.3s ease-in-out;
  z-index: 1000;
  width: 100%;
  padding: 0 200px;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--white-multipar);
  box-shadow: 2px 2px 10px #5f5f5f;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    top: -100px;
  }

  to {
    top: 0;
  }
}

.logo img {
  height: 180px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.menu a {
  display: block;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-multipar);
  transition: 0.9s;
}

.menu a:hover {
  color: var(--green-multipar);
  font-weight: 800;
  letter-spacing: 1px;
}

.btn-menu {
  display: none;
}

@media (max-width: 1250px) {
  .menu {
    display: block;
    position: absolute;
    top: 4.6875rem;
    left: 0;
    background: var(--white-multipar);
    text-align: center;
    width: 100%;
    height: 0;
    z-index: 1;
    visibility: hidden;
    overflow-y: hidden;
    transition: 0.5s;
  }

  .menu a {
    padding: 1rem 0;
    margin-inline: 1rem;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.16);
    border-radius: 0;
  }

  .btn-menu {
    background: none;
    border: none;
    font: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-multipar);
    padding: 1rem 0;
    cursor: pointer;
  }

  .hamburger {
    border-top: 0.125rem solid;
    width: 1.25rem;
  }

  .hamburger::after,
  .hamburger::before {
    content: " ";
    display: block;
    width: 1.25rem;
    height: 0.125rem;
    background: currentColor;
    margin-top: 0.3125rem;
    position: relative;
    transition: 0.3s;
  }

  .nav.active .menu {
    height: calc(100vh - 4.6875rem);
    visibility: visible;
    overflow-y: auto;
  }

  .nav.active .hamburger {
    border-top-color: transparent;
  }

  .nav.active .hamburger::before {
    transform: rotate(135deg);
  }

  .nav.active .hamburger::after {
    transform: rotate(-135deg);
    top: -0.4375rem;
  }
}

@media screen and (min-width: 360px) and (max-width: 479px) {

  .header {
    height: 100px;
    padding: 0 10px;
  }

  .logo img{
    height: 100px;
  }

  /* REDES SOCIAIS SEÇÃO*/
  .redes-sociais {
    display: none;
  }
}

@media screen and (min-width: 480px) and (max-width: 766px) {
  .header {
    padding: 0 20px;
  }

  /* REDES SOCIAIS SEÇÃO */
  .redes-sociais {
    display: none;
  }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
  .header {
    padding: 0 50px;
  }

}

@media screen and (min-width: 1024px) and (max-width: 1345px) {
  .header {
    padding: 0 200px;
  }
}

/* NAVBAR GERAL */

/* CORREÇÃO DE RESPONSIVIDADE */

@media screen and (max-width: 359px) {
  .header{
      padding: 0 50px;
  }

/* REDES SOCIAIS SEÇÃO*/
.redes-sociais {
  display: none;
}
/* REDES SOCIAIS SEÇÃO*/

/* SERVIÇOS  - TÓPICOS*/

.topics {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 30px;
}

.topics-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 5px;
}

.topics-content p {
  font-size: 12px;
  text-align: center;
}

.locacao,
.venda,
.hanna {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px;
}

.venda {
  border-left: none;
  border-right: none;
  border-top: 2px solid var(--blue-multipar);
  border-bottom: 2px solid var(--blue-multipar);
}

.title-topics {
  margin-top: 10px;
  width: 140px;
  height: 40px;
}

/* FIM SECTION SERVIÇOS  */

/* QUEM SOMOS - MULTIPAR */
.quem-somos {
  margin-top: 100px;
  padding: 0 5%;
}

.content {
  flex-direction: column;
}

.main-image {
  width: 80%;
}

.circle-bottom-left {
  width: 90px;
  height: 90px;
  border: 15px solid var(--blue-multipar);
  bottom: -5px;
  left: -10px;
  animation: pulse 4s ease-in-out infinite;
}

.circle-top-right {
  width: 125px;
  height: 125px;
  border: 25px solid var(--green-multipar);
  top: -35px;
  right: 2px;
  animation: pulse 5s ease-in-out infinite;
}

.text-content {
  margin-top: 40px;
  padding-left: 0;
}

.text-content p {
  text-align: justify;
  font-size: 14px;
}

.multipar-title {
  font-size: 50px;
}

.quem-somos-title {
  font-size: 45px;
  top: -25px;
}

.contato {
  margin-top: 20px;
}

.contato .btn-contatoSobre {
  font-size: 20px;
}

.contato .tel-contato-sobre {
  font-size: 16px;
}

.contato .tel-contato-sobre i {
  font-size: 18px;
}

/* FIM QUEM SOMOS  */

/* SECTION PRODUTOS  */
.section-produtos {
  height: 1200px;
}

.background {
  width: 100%;
}

.content-produtos h1 {
  font-size: 30px;
}

.content-produtos .risco1 {
  margin-top: 10px;
  width: 120px;
}

.content-produtos .risco2 {
  width: 90px;
}

.texto-breve,
.texto-breve p {
  display: none;
}

.category-controls {
  gap: 15px;
}

.category-btn {
  width: 90px;
  height: 35px;
  font-size: 16px;
}

.gallery {
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.image-container img {
  width: 210px;
}

.image-container .overlay {
  border-radius: 5px;
}

/* FIM SECTION PRODUTOS  */

/* SECTION LAUDOS */

.sec-laudos {
  padding: 4px 40px;
}

.title-laudos {
  font-size: 30px;
  margin-bottom: 5px;
}

.detalhe-1 {
  width: 120px;
}

.detalhe-2 {
  width: 90px;
}

.texto-breve2 {
  width: 100%;
}

#texto-laudos {
  font-size: 12px;
  width: 100%;
}

.corpo-slider .card-list {
  flex-direction: column;
}

.card-list .card-item {
  margin: 20px 0px;
}

/* FIM SECTION LAUDOS */

/* SEÇÃO CALIBRAÇÃO */
.sec-calibracao {
  padding: 4px 40px;
}

.title-calibracao {
  font-size: 30px;
  margin-bottom: 10px;
  margin-top: 40px;
}

.detalhe-1 {
  width: 120px;
}

.detalhe-2 {
  width: 90px;
}

.texto-breve3 {
  width: 100%;
}

#texto-calibracao {
  font-size: 12px;
  width: 100%;
}

.cards-sec-calibracao {
  flex-direction: column;
  width: 100%;
  height: auto;
}

.cards-calibracao {
  width: 300px;
  height: 400px;
  margin: 20px 0;
}

/* FIM SEÇÃO CALIBRAÇÃO */

/* FOOTER */
.footer-start {
  flex-direction: column;
  width: 100%;
  height: 730px;
  padding: 20px 55px;
}

.footer-content {
  width: 100%;
  height: auto;
}

.title-footer-content h1 {
  font-size: 16px;
}

.title-footer-content .detalhe-footer {
  width: 3px;
  height: 18px;
}

.text-footer-content p {
  font-size: 14px;
}

.icone i {
  font-size: 14px;
}

.none {
  display: block;
}

.complete {
  display: none;
}

.footer-end {
  height: 60px;
}

.footer-end p {
  text-align: center;
  font-size: 12px;
}

/* FOOTER */
}

/* CORREÇÃO DE RESPONSIVIDADE */

/* NAVBAR CATEGORIAS */

.navbar-categorias {
  width: 100%;
  height: fit-content;
  padding: 20px 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #8fb72b; */
  background: linear-gradient(90deg, rgba(32,105,166,1) 8%, rgba(143,183,43,1) 100%);
}

.nome-da-pagina p {
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.categorias ul {
  display: flex;
  width: fit-content;
}

.categorias ul li {
  margin: 0 20px;
  display: flex;
  align-items: center;
}

.categorias ul li:last-child {
  margin: 0 0 0 10px;
}

.categorias ul li a {
  font-size: 18px;
  color: white;
  font-weight: 600;
  transition: 0.5s;
}

.categorias ul li a:hover {
  color: #2069a6;
}

/* NAVBAR CATEGORIAS */

/* PRODUTOS */

.container-flex {
  width: 100%;
  height: auto;
  padding: 50px;
}

.container-03 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-items: center;
  justify-content: center;
  row-gap: 50px;
  column-gap: 50px;
}


#card {
  width: 300px;
  height: 400px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  background-color: #2069a6;
  transition: 0.5s;
}

.image-area {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.image-area img {
  height: 100%;
  width: 100%;
}

.image-area p {
  font-size: 30px;
  font-weight: bolder;
  color: #444444;
}

.nome-do-produto {
  height: 50px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #8fb72b; */
  background: linear-gradient(90deg, rgba(32, 105, 166, 1) 8%, rgba(143, 183, 43, 1) 100%);
}

.nome-do-produto p {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}

.button-card {
  height: 50px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.button-card:hover {
  background-color: white;
}

.button-card p {
  white-space: nowrap;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  transition: 0.5s;
}

.button-card:hover p {
  color: #444444;
}

/* PRODUTOS */

/* FOOTER */

.footer-start {
  width: 100%;
  height: 400px;
  background-color: var(--green-multipar);
  padding: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-content {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
}

.title-footer-content {
  display: flex;
  justify-content: start;
  align-items: center;
  width: fit-content;
}

.title-footer-content .detalhe-footer {
  width: 5px;
  height: 24px;
  background-color: var(--blue-multipar);
}

.title-footer-content h1 {
  text-transform: uppercase;
  color: var(--white-multipar);
  margin-left: 5px;
  font-size: 24px;
}

.text-footer-content {
  margin-top: 20px;
}

.text-footer-content p {
  color: var(--white-multipar);
  font-size: 16px;
  text-align: left;
}

.options-footer {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  width: fit-content;
}

.none {
  display: none;
}

.complete {
  display: block;
}

.icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--blue-multipar);
  margin-right: 10px;
  transition: 0.9s;
}

.icone i:hover {
  color: var(--green-multipar);
}

.icone i {
  color: var(--white-multipar);
  transition: 0.9s;
}

.options-footer p {
  transition: 0.9s;
}

.options-footer p:hover {
  color: var(--blue-multipar);
  font-weight: 800;
}

.info-hours {
  margin-top: 20px;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-multipar);
}

.info-hours p {
  font-weight: 700;
}

.footer-end {
  /* background-color: var(--blue-multipar); */
  background: linear-gradient(90deg, rgba(32,105,166,1) 8%, rgba(143,183,43,1) 100%);
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-end p {
  color: var(--white-multipar);
}

.footer-end p a {
  color: var(--white-multipar);
  font-weight: 600;
  transition: 0.9s;
}

.footer-end p a:hover {
  color: var(--green-multipar);
}

/* FOOTER */
@media (max-width: 359px) {
  .footer-start {
    flex-direction: column;
    width: 100%;
    height: 730px;
    padding: 20px 55px;
  }

  .footer-content {
    width: 100%;
    height: auto;
  }

  .title-footer-content h1 {
    font-size: 16px;
  }

  .title-footer-content .detalhe-footer {
    width: 3px;
    height: 18px;
  }

  .text-footer-content p {
    font-size: 14px;
  }

  .icone i {
    font-size: 14px;
  }

  .none {
    display: block;
  }

  .complete {
    display: none;
  }

  .footer-end {
    height: 60px;
  }

  .footer-end p {
    text-align: center;
    font-size: 12px;
  }
}

@media screen and (min-width: 360px) and (max-width: 480px) {
  .navbar-categorias {
    width: 100%;
    height: fit-content;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8fb72b;
  }

  .nome-da-pagina p {
    font-size: 10px;
    color: white;
    font-weight: 600;
  }

  .categorias ul {
    display: flex;
    width: fit-content;
  }

  .categorias ul li {
    margin: 0 10px;
  }

  .categorias ul li a {
    font-size: 12px;
    color: white;
    font-weight: 600;
    transition: 0.5s;
  }

  .categorias ul li a:hover {
    color: #2069a6;
  }

  .footer-start {
    flex-direction: column;
    width: 100%;
    height: 730px;
    padding: 20px 55px;
  }

  .footer-content {
    width: 100%;
    height: auto;
  }

  .title-footer-content h1 {
    font-size: 16px;
  }

  .title-footer-content .detalhe-footer {
    width: 3px;
    height: 18px;
  }

  .text-footer-content p {
    font-size: 14px;
  }

  .icone i {
    font-size: 14px;
  }

  .none {
    display: block;
  }

  .complete {
    display: none;
  }

  .footer-end {
    height: 60px;
  }

  .footer-end p {
    text-align: center;
    font-size: 12px;
  }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  .navbar-categorias {
    width: 100%;
    height: fit-content;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8fb72b;
  }

  .nome-da-pagina p {
    font-size: 16px;
    color: white;
    font-weight: 600;
  }

  .categorias ul {
    display: flex;
    width: fit-content;
  }

  .categorias ul li {
    margin: 0 10px;
  }

  .categorias ul li a {
    font-size: 16px;
    color: white;
    font-weight: 600;
    transition: 0.5s;
  }

  .categorias ul li a:hover {
    color: #2069a6;
  }

  .footer-start {
    flex-direction: column;
    width: 100%;
    height: 730px;
    padding: 20px 55px;
  }

  .footer-content {
    width: 100%;
    height: auto;
  }

  .title-footer-content h1 {
    font-size: 18px;
  }

  .title-footer-content .detalhe-footer {
    width: 3px;
    height: 18px;
  }

  .text-footer-content p {
    font-size: 16px;
  }

  .icone i {
    font-size: 16px;
  }

  .none {
    display: block;
  }

  .complete {
    display: none;
  }

  .footer-end {
    height: 60px;
  }

  .footer-end p {
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .navbar-categorias{
    padding: 20px 50px;
  }
  .footer-start {
    width: 100%;
    height: 300px;
    padding: 30px;
  }

  .footer-content {
    width: 100%;
    height: 300px;
  }

  .title-footer-content h1 {
    font-size: 14px;
    padding-top: 40px;
  }

  .title-footer-content .detalhe-footer {
    width: 3px;
    height: 18px;
    margin-top: 40px;
  }

  .text-footer-content p {
    width: 80%;
    font-size: 12px;
  }

  .icone i {
    font-size: 12px;
  }

  .none {
    display: block;
  }

  .complete {
    display: none;
  }

  .footer-end {
    height: 60px;
  }

  .footer-end p {
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1220px) {
  .footer-start {
    width: 100%;
    height: 300px;
    padding: 30px;
  }

  .footer-content {
    width: 100%;
    height: 300px;
  }

  .title-footer-content h1 {
    font-size: 14px;
    padding-top: 40px;
  }

  .title-footer-content .detalhe-footer {
    width: 3px;
    height: 18px;
    margin-top: 40px;
  }

  .text-footer-content p {
    width: 80%;
    font-size: 12px;
  }

  .icone i {
    font-size: 12px;
  }

  .none {
    display: block;
  }

  .complete {
    display: none;
  }

  .footer-end {
    height: 60px;
  }

  .footer-end p {
    text-align: center;
    font-size: 14px;
  }
}